projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e1bb1c
)
(unexec): Don't downcase first letter of error msg.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 13 Sep 2002 19:35:58 +0000
(19:35 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 13 Sep 2002 19:35:58 +0000
(19:35 +0000)
src/unexsol.c
patch
|
blob
|
history
diff --git
a/src/unexsol.c
b/src/unexsol.c
index 7f73b68518b83fe67a6d908e1474698f5b83a022..382682e452149e2fc194b7d0ac4886f0b40272e0 100644
(file)
--- a/
src/unexsol.c
+++ b/
src/unexsol.c
@@
-24,11
+24,6
@@
unexec (char *new_name, char *old_name, unsigned int data_start,
errstring = code_convert_string_norecord (build_string (dlerror ()),
Vlocale_coding_system, 0);
- /* System error messages are capitalized. Downcase the initial
- unless it is followed by a slash. */
- if (SREF (errstring, 1) != '/')
- SSET (errstring, 0, DOWNCASE (SREF (errstring, 0)));
-
Fsignal (Qfile_error,
Fcons (build_string ("Cannot unexec"), Fcons (errstring, data)));
}